HTMLify
index.html
Views: 300 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | <!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>Download Progress Micro Interaction</title> <meta name='viewport' content='width=device-width, initial-scale=1'> <link rel='stylesheet' type='text/css' media='screen' href='style.css'> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.1/gsap.min.js" integrity="sha512-qF6akR/fsZAB4Co1QDDnUXWnaQseLGXoniuSuSlPQK6+aWhlMZcHzkasCSlnWoe+TJuudlka1/IQ01Dnhgq95g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> </head> <body> <button class="button"> <svg class="circle" viewBox="0 0 76 76"> <circle class="default" cx="38" cy="38" r="36"></circle> <circle class="active" cx="38" cy="38" r="36"></circle> </svg> <div class="icon"> <svg class="line" viewBox="0 0 4 37"> <line x1="2" y1="2" x2="2" y2="35"></line> </svg> <div> <svg class="arrow" viewBox="0 0 40 32"></svg> <svg class="progress" viewBox="0 0 444 10"> <path d="M2,5 L42,5 C60.0089086,6.33131695 73.3422419,6.99798362 82,7 C87.572404,7.00129781 91.0932494,1.72677301 102,1.99944178 C112.906751,2.27211054 112.000464,7.99986045 122,8 C131.999536,8.00013955 132,2 142,2 C152,2 152,8 162,8 C172,8 172,2 182,2 C192,2 192,8 202,8 C212,8 212,2 222,2 C232,2 232,8 242,8 C252,8 252,2 262,2 C272,2 272,8 282,8 C292,8 292,2 302,2 C312,2 312,8 322,8 C332,8 332,2 342,2 C352,2 351.897852,7.49489262 362,8 C372.102148,8.50510738 378.620177,5.22532154 402,5 L442,5"> </path> </svg> </div> </div> <span>0%</span> </button> <script> const $ = (s, o = document) => o.querySelector(s); const $$ = (s, o = document) => o.querySelectorAll(s); $$(".button").forEach((button) => { let count = { number: 0 }, icon = $(".icon", button), iconDiv = $(".icon > div", button), arrow = $(".icon .arrow", button), countElem = $("span", button), svgPath = new Proxy( { y: null, s: null, f: null, l: null }, { set(target, key, value) { target[key] = value; if ( target.y !== null && target.s != null && target.f != null && target.l != null ) { arrow.innerHTML = getPath( target.y, target.f, target.l, target.s, null ); } return true; }, get(target, key) { return target[key]; } } ); svgPath.y = 30; svgPath.s = 0; svgPath.f = 8; svgPath.l = 32; button.addEventListener("click", (e) => { if (!button.classList.contains("loading")) { if (!button.classList.contains("animation")) { button.classList.add("loading", "animation"); gsap.to(svgPath, { f: 2, l: 38, duration: 0.3, delay: 0.15 }); gsap.to(svgPath, { s: 0.2, y: 16, duration: 0.8, delay: 0.15, ease: Elastic.easeOut.config(1, 0.4) }); gsap.to(count, { number: "100", duration: 3.8, delay: 0.8, onUpdate() { countElem.innerHTML = Math.round(count.number) + "%"; } }); setTimeout(() => { iconDiv.style.setProperty("overflow", "visible"); setTimeout(() => { button.classList.remove("animation"); }, 600); }, 4820); } } else { if (!button.classList.contains("animation")) { button.classList.add("reset"); gsap.to(svgPath, { f: 8, l: 32, duration: 0.4 }); gsap.to(svgPath, { s: 0, y: 30, duration: 0.4 }); setTimeout(() => { button.classList.remove("loading", "reset"); iconDiv.removeAttribute("style"); }, 400); } } e.preventDefault(); }); }); function getPoint(point, i, a, smoothing) { let cp = (current, previous, next, reverse) => { let p = previous || current, n = next || current, o = { length: Math.sqrt( Math.pow(n[0] - p[0], 2) + Math.pow(n[1] - p[1], 2) ), angle: Math.atan2(n[1] - p[1], n[0] - p[0]) }, angle = o.angle + (reverse ? Math.PI : 0), length = o.length * smoothing; return [ current[0] + Math.cos(angle) * length, current[1] + Math.sin(angle) * length ]; }, cps = cp(a[i - 1], a[i - 2], point, false), cpe = cp(point, a[i - 1], a[i + 1], true); return `C ${cps[0]},${cps[1]} ${cpe[0]},${cpe[1]} ${point[0]},${point[1]}`; } function getPath(update, first, last, smoothing, pointsNew) { let points = pointsNew ? pointsNew : [ [first, 16], [20, update], [last, 16] ], d = points.reduce( (acc, point, i, a) => i === 0 ? `M ${point[0]},${point[1]}` : `${acc} ${getPoint(point, i, a, smoothing)}`, "" ); return `<path d="${d}" />`; } </script> </body> </html> |